home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / rjs.lha / RJS / KernelVar / tests / boottime.C next >
C/C++ Source or Header  |  1991-06-14  |  211b  |  18 lines

  1. #include <stdio.h>
  2. #include <time.h>
  3.  
  4. #include "RJS/KernelVar.h"
  5.  
  6. main(int argc,char **argv)
  7. {
  8.     KernelVar kernel;
  9.  
  10.     struct timeval boot;
  11.  
  12.     kernel.boottime(boot);
  13.  
  14.     printf("%s\n",ctime((long*)&boot.tv_sec));
  15.  
  16.  
  17. }
  18.